home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / custom.ifx.pre < prev    next >
Text File  |  2004-08-03  |  375b  |  19 lines

  1. /*
  2.  *    Custom.ifx.pre
  3.  *    As the user to enter a command, and execute that
  4.  *    command while processing.
  5.  *
  6.  *    by Steve Tibbett
  7.  */
  8.  
  9. Options Results
  10.  
  11. Default=GetClip("ImpCustomCommand"arg(1));
  12. if (Default="") then Default="Oval 100 100 50 50"
  13.  
  14. RequestString '"Enter an ImageFX command:"' '"'Default'"'
  15. if (RC~=0) then return 10
  16.  
  17. call SetClip("ImpCustomCommand"arg(1), Result);
  18.  
  19.